POV-Ray : Newsgroups : povray.beta-test : RC5 Camera bug : RC5 Camera bug Server Time
29 Jul 2024 10:31:34 EDT (-0400)
  RC5 Camera bug  
From: Mark Weyer
Date: 31 May 2002 04:59:19
Message: <3CF72E3C.7E90042A@frege.mathematik.uni-freiburg.de>
(RC5, Redhat Linux, 64MB, 300MHz, why does this matter?)
The camera definition does not behave how I think it should.
The following is a minimal scene.
The two cameras should be equivalent, but are not.
They were back in 3.1g.
For once it is NOT a problem with #declared cameras.

  Mark Weyer


light_source {
  <-1,2,-1>*100
  color rgb <1,1,1>
}

box {
  <3,-1,-10> <4,1,10>
  texture {pigment {rgb <1,1,1>}}
}

#declare Cam1 = camera {
  location <0, 0, 0>
  look_at <1, 0, 0>
  right -y
  up -z
}

#declare Cam2 = camera {
  location <0, 0, 0>
  look_at <0, 0, 1>
  right x
  up y
  rotate -90*x
  rotate -90*z
}

camera {Cam1}


Post a reply to this message

Copyright 2003-2023 Persistence of Vision Raytracer Pty. Ltd.